Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/DebugInterface/CDebuggerApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,11 @@ void CDebuggerApi::SetWarpSpeed(bool isWarpSpeed)
debugInterface->SetSettingIsWarpSpeed(isWarpSpeed);
}

bool CDebuggerApi::GetWarpSpeed()
{
return debugInterface->GetSettingIsWarpSpeed();
}

bool CDebuggerApi::KeyboardDown(u32 mtKeyCode)
{
return debugInterface->KeyboardDown(mtKeyCode);
Expand Down
1 change: 1 addition & 0 deletions src/DebugInterface/CDebuggerApi.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class CDebuggerApi

//
virtual void SetWarpSpeed(bool isWarpSpeed);
virtual bool GetWarpSpeed();

// input
virtual bool KeyboardDown(u32 mtKeyCode);
Expand Down
Loading