more name change
This commit is contained in:
parent
e0537926cf
commit
f29569cf5d
|
@ -172,7 +172,7 @@ static void destroy_empty_cursor()
|
|||
|
||||
static void x11_capture_mouse()
|
||||
{
|
||||
x11_window_set_text("Reicast - mouse capture");
|
||||
x11_window_set_text("Flycast - mouse capture");
|
||||
capturing_mouse = true;
|
||||
Cursor cursor = create_empty_cursor();
|
||||
Display *display = (Display*)x11_disp;
|
||||
|
@ -185,7 +185,7 @@ static void x11_capture_mouse()
|
|||
|
||||
static void x11_uncapture_mouse()
|
||||
{
|
||||
x11_window_set_text("Reicast");
|
||||
x11_window_set_text("Flycast");
|
||||
capturing_mouse = false;
|
||||
Display *display = (Display*)x11_disp;
|
||||
Window window = (Window)x11_win;
|
||||
|
@ -551,7 +551,7 @@ void x11_window_create()
|
|||
x11_win = (void*)x11Window;
|
||||
x11_vis = (void*)x11Visual->visual;
|
||||
|
||||
x11_window_set_text("Reicast");
|
||||
x11_window_set_text("Flycast");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -247,7 +247,7 @@ void sdl_window_create()
|
|||
SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
|
||||
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
||||
|
||||
window = SDL_CreateWindow("Reicast Emulator", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, window_width, window_height, flags);
|
||||
window = SDL_CreateWindow("Flycast", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, window_width, window_height, flags);
|
||||
if (!window)
|
||||
{
|
||||
die("error creating SDL window");
|
||||
|
|
|
@ -702,7 +702,7 @@ int CALLBACK WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine
|
|||
i++;
|
||||
}
|
||||
else
|
||||
logfile = "reicast-log.txt";
|
||||
logfile = "flycast-log.txt";
|
||||
freopen(logfile, "w", stdout);
|
||||
freopen(logfile, "w", stderr);
|
||||
}
|
||||
|
|
|
@ -8,5 +8,5 @@ public class Config {
|
|||
public static final String pref_rendertype = "render_type";
|
||||
public static final String pref_renderdepth = "depth_render";
|
||||
|
||||
public static String git_issues = "https://github.com/reicast/reicast-emulator/issues/";
|
||||
public static String git_issues = "https://github.com/flyinghead/flycast/issues/";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue