mirror of
https://github.com/huderlem/porymap.git
synced 2026-08-13 12:26:05 -05:00
Stop treating map header bools as strings
This commit is contained in:
@@ -42,14 +42,13 @@ public:
|
||||
QString song;
|
||||
QString layoutId;
|
||||
QString location;
|
||||
QString requiresFlash;
|
||||
QString isFlyable;
|
||||
bool requiresFlash;
|
||||
QString weather;
|
||||
QString type;
|
||||
QString show_location;
|
||||
QString allowRunning;
|
||||
QString allowBiking;
|
||||
QString allowEscapeRope;
|
||||
bool show_location;
|
||||
bool allowRunning;
|
||||
bool allowBiking;
|
||||
bool allowEscaping;
|
||||
int floorNumber = 0;
|
||||
QString battle_scene;
|
||||
QString sharedEventsMap = "";
|
||||
@@ -59,6 +58,7 @@ public:
|
||||
bool isPersistedToFile = true;
|
||||
bool hasUnsavedDataChanges = false;
|
||||
bool needsLayoutDir = true;
|
||||
bool needsHealLocation = false;
|
||||
QImage collision_image;
|
||||
QPixmap collision_pixmap;
|
||||
QImage image;
|
||||
|
||||
@@ -194,7 +194,7 @@ private slots:
|
||||
void on_checkBox_ShowLocation_stateChanged(int selected);
|
||||
void on_checkBox_AllowRunning_stateChanged(int selected);
|
||||
void on_checkBox_AllowBiking_stateChanged(int selected);
|
||||
void on_checkBox_AllowEscapeRope_stateChanged(int selected);
|
||||
void on_checkBox_AllowEscaping_stateChanged(int selected);
|
||||
void on_spinBox_FloorNumber_valueChanged(int offset);
|
||||
void on_actionUse_Encounter_Json_triggered(bool checked);
|
||||
void on_actionMonitor_Project_Files_triggered(bool checked);
|
||||
|
||||
Reference in New Issue
Block a user