Cleanup: add missing struct qualifier

This commit is contained in:
Campbell Barton
2024-09-20 19:52:01 +10:00
parent 77617fce77
commit 09e459589f

View File

@@ -31,13 +31,13 @@ struct Global {
* Note that `CTX_data_main(C)` should be used where possible.
* Otherwise access via #G_MAIN.
*/
Main *main;
struct Main *main;
/**
* Preview main is stored to avoid loading the preview file in multiple scenarios.
* It is actually shared between shader node previews and asset previews.
*/
Main *pr_main;
struct Main *pr_main;
/** Last saved location for images. */
char filepath_last_image[/*FILE_MAX*/ 1024];