mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 21:07:42 +00:00
CIOWin: Make Draw() non-const
Allows removing several const_cast usages within the codebase.
This commit is contained in:
@@ -1906,9 +1906,10 @@ void CFrontEndUI::CompleteStateTransition() {
|
||||
|
||||
void CFrontEndUI::HandleDebugMenuReturnValue(CGameDebug::EReturnValue val, CArchitectureQueue& queue) {}
|
||||
|
||||
void CFrontEndUI::Draw() const {
|
||||
if (x14_phase < EPhase::DisplayFrontEnd)
|
||||
void CFrontEndUI::Draw() {
|
||||
if (x14_phase < EPhase::DisplayFrontEnd) {
|
||||
return;
|
||||
}
|
||||
SCOPED_GRAPHICS_DEBUG_GROUP("CFrontEndUI::Draw", zeus::skGreen);
|
||||
|
||||
if (xec_emuFrme) {
|
||||
|
||||
Reference in New Issue
Block a user