]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Don't use an enum as a type directly. Helps fix C++ compilation.
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 8 Jun 2020 14:46:10 +0000 (14:46 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 8 Jun 2020 14:46:10 +0000 (14:46 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12650 d7cf8633-e32d-0410-b094-e92efae38249

progsvm.h

index dae3932f83e258cd7a85f2106b2dd6e65199ed35..2651749497f30f61162a8206a03884698bd87fa7 100644 (file)
--- a/progsvm.h
+++ b/progsvm.h
@@ -506,7 +506,7 @@ prvm_prog_garbagecollection_state_stage_t;
 
 typedef struct prvm_prog_garbagecollection_state_s
 {
-       prvm_prog_garbagecollection_state_stage_t stage;
+       int stage;
        int globals_mark_progress;
        int fields_mark_progress;
        int fields_mark_progress_entity;