Skip to content

Commit

Permalink
Change memory type back to int
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursiveVision committed Dec 6, 2024
1 parent c16b30e commit 66553b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CvGameCoreDLL_Expansion2/CvDiplomacyAI.h
Original file line number Diff line number Diff line change
Expand Up @@ -1930,7 +1930,7 @@ class CvDiplomacyAI
bool m_bWasHumanLastUpdate;
bool m_bEndedFriendshipThisTurn;
bool m_bUpdatedWarProgressThisTurn;
unsigned int m_iNumReevaluations; // Used for RNG
int m_iNumReevaluations; // Used for RNG
bool m_bWaitingForDigChoice;
bool m_bBackstabber;
bool m_bCompetingForVictory;
Expand All @@ -1951,8 +1951,8 @@ class CvDiplomacyAI
char m_aeCivApproach[MAX_CIV_PLAYERS];
char m_aeCivStrategicApproach[MAX_MAJOR_CIVS];
char m_aeCachedSurfaceApproach[MAX_MAJOR_CIVS];
unsigned int m_aaiApproachValues[MAX_MAJOR_CIVS][NUM_CIV_APPROACHES];
unsigned int m_aaiStrategicApproachValues[MAX_MAJOR_CIVS][NUM_CIV_APPROACHES];
int m_aaiApproachValues[MAX_MAJOR_CIVS][NUM_CIV_APPROACHES];
int m_aaiStrategicApproachValues[MAX_MAJOR_CIVS][NUM_CIV_APPROACHES];

// Minor Civs
bool m_abWantToRouteToMinor[MAX_MINOR_CIVS];
Expand Down

0 comments on commit 66553b9

Please sign in to comment.