Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
xavieran committed Mar 1, 2024
1 parent 488ec0b commit e7ec13b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bak/scene.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ std::unordered_map<unsigned, Scene> LoadScenes(FileBuffer& fb)
{
imageSlots[*imageSlot] = ImageSlot{};
}
imageSlots[*imageSlot].mImage = name;
//imageSlots[*imageSlot].mImage = name;
} break;
case Actions::LOAD_SCREEN:
{
Expand Down Expand Up @@ -430,7 +430,7 @@ std::unordered_map<unsigned, Scene> LoadScenes(FileBuffer& fb)
case Actions::UPDATE:
{
currentScene.mActions.emplace_back(Update{});
};
} break;
default:
logger.Debug() << "Unhandled action: " << chunk.mAction << "\n";
break;
Expand Down
2 changes: 2 additions & 0 deletions gui/staticTTM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ StaticTTM::StaticTTM(
// Doesn't really do anything...
// in the future maybe pop the clip region
// so we could add another one?
},
[&](const BAK::Update&){
}
},
action
Expand Down

0 comments on commit e7ec13b

Please sign in to comment.