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
2 changes: 1 addition & 1 deletion MarathonRecomp/apu/driver/sdl2_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void XAudioInitializeSystem()
#endif

SDL_SetHint(SDL_HINT_AUDIO_CATEGORY, "playback");
SDL_SetHint(SDL_HINT_AUDIO_DEVICE_APP_NAME, "Unleashed Recompiled");
SDL_SetHint(SDL_HINT_AUDIO_DEVICE_APP_NAME, "Marathon Recompiled");

if (SDL_InitSubSystem(SDL_INIT_AUDIO) < 0)
{
Expand Down
2 changes: 1 addition & 1 deletion MarathonRecomp/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void init()
printf("[*] CPU does not support the AVX instruction set.\n");

#ifdef _WIN32
MessageBoxA(nullptr, "Your CPU does not meet the minimum system requirements.", "Unleashed Recompiled", MB_ICONERROR);
MessageBoxA(nullptr, "Your CPU does not meet the minimum system requirements.", "Marathon Recompiled", MB_ICONERROR);
#endif

std::_Exit(1);
Expand Down
2 changes: 1 addition & 1 deletion MarathonRecomp/ui/game_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void GameWindow::Init(const char* sdlVideoDriver)
if (!IsPositionValid())
GameWindow::ResetDimensions();

s_pWindow = SDL_CreateWindow("Unleashed Recompiled", s_x, s_y, s_width, s_height, GetWindowFlags());
s_pWindow = SDL_CreateWindow("Marathon Recompiled", s_x, s_y, s_width, s_height, GetWindowFlags());

if (IsFullscreen())
SDL_ShowCursor(SDL_DISABLE);
Expand Down
Loading