Commit 142b45f 1 parent 772566f commit 142b45f Copy full SHA for 142b45f
File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ void idEditEntities::DisplayEntities( void ) {
671
671
*/
672
672
673
673
idGameEdit gameEditLocal;
674
- idGameEdit * gameEdit = &gameEditLocal;
674
+ idGameEditBase * gameEdit = &gameEditLocal;
675
675
676
676
677
677
/*
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ unsigned int com_msgID = -1;
120
120
121
121
#ifdef __DOOM_DLL__
122
122
idGame * game = NULL ;
123
- idGameEdit * gameEdit = NULL ;
123
+ idGameEditBase * gameEdit = NULL ;
124
124
#endif
125
125
126
126
// writes si_version to the config file - in a kinda obfuscated way
Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ class idGameEdit : public idGameEditBase {
392
392
393
393
};
394
394
395
- extern idGameEdit * gameEdit;
395
+ extern idGameEditBase * gameEdit;
396
396
397
397
398
398
/*
@@ -428,7 +428,7 @@ typedef struct {
428
428
429
429
int version; // API version
430
430
idGame * game; // interface to run the game
431
- idGameEdit * gameEdit; // interface for in-game editing
431
+ idGameEditBase * gameEdit; // interface for in-game editing
432
432
433
433
} gameExport_t;
434
434
Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ void idEditEntities::DisplayEntities( void ) {
671
671
*/
672
672
673
673
idGameEdit gameEditLocal;
674
- idGameEdit * gameEdit = &gameEditLocal;
674
+ idGameEditBase * gameEdit = &gameEditLocal;
675
675
676
676
677
677
/*
You can’t perform that action at this time.
0 commit comments