housekeeping

This commit is contained in:
scawful
2022-07-06 22:22:29 -04:00
parent b127718ae8
commit 9d576351d0
12 changed files with 43 additions and 43 deletions

View File

@@ -28,6 +28,7 @@ namespace constants {
//===========================================================================================
// 65816 LanguageDefinition
//===========================================================================================
static const char *const kKeywords[] = {
"ADC", "AND", "ASL", "BCC", "BCS", "BEQ", "BIT", "BMI", "BNE",
"BPL", "BRA", "BRL", "BVC", "BVS", "CLC", "CLD", "CLI", "CLV",

View File

@@ -71,7 +71,6 @@ void Controller::onInput() {
case SDL_WINDOWEVENT:
switch (event.window.event) {
case SDL_WINDOWEVENT_CLOSE:
editor_.Shutdown();
quit();
break;
case SDL_WINDOWEVENT_SIZE_CHANGED:

View File

@@ -45,7 +45,7 @@ class Controller {
};
bool active_;
gui::editor::Editor editor_;
app::editor::Editor editor_;
std::shared_ptr<SDL_Window> sdl_window_;
std::shared_ptr<SDL_Renderer> sdl_renderer_;
};