Skip to content

Commit

Permalink
SSNES => RetroArch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Themaister committed Apr 21, 2012
1 parent 3a7ad61 commit 9ab51ad
Show file tree
Hide file tree
Showing 150 changed files with 516 additions and 516 deletions.
6 changes: 3 additions & 3 deletions 360/fonts.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/fonts.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
20 changes: 10 additions & 10 deletions 360/main.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down Expand Up @@ -211,14 +211,14 @@ static void init_settings (bool load_libretro_path)

if(strcmp(fname_tmp, "SSNES-Salamander.xex") == 0)
{
SSNES_WARN("First entry is SSNES Salamander itself, increment entry by one and check if it exists.\n");
SSNES_WARN("First entry is RetroArch Salamander itself, increment entry by one and check if it exists.\n");
first_xex = dir_list[1];
fill_pathname_base(fname_tmp, first_xex, sizeof(fname_tmp));

if(!first_xex)
{
//This is very unlikely to happen
SSNES_WARN("There is no second entry - no choice but to set it to SSNES Salamander\n");
SSNES_WARN("There is no second entry - no choice but to set it to RetroArch Salamander\n");
first_xex = dir_list[0];
fill_pathname_base(fname_tmp, first_xex, sizeof(fname_tmp));
}
Expand Down Expand Up @@ -341,7 +341,7 @@ static void get_environment_settings (void)

if (XContentGetLicenseMask(&license_mask, NULL) != ERROR_SUCCESS)
{
printf("SSNES was launched as a standalone DVD, or using DVD emulation, or from the development area of the HDD.\n");
printf("RetroArch was launched as a standalone DVD, or using DVD emulation, or from the development area of the HDD.\n");
}
else
{
Expand All @@ -350,16 +350,16 @@ static void get_environment_settings (void)
switch(g_console.volume_device_type)
{
case XCONTENTDEVICETYPE_HDD:
printf("SSNES was launched from a content package on HDD.\n");
printf("RetroArch was launched from a content package on HDD.\n");
break;
case XCONTENTDEVICETYPE_MU:
printf("SSNES was launched from a content package on USB or Memory Unit.\n");
printf("RetroArch was launched from a content package on USB or Memory Unit.\n");
break;
case XCONTENTDEVICETYPE_ODD:
printf("SSNES was launched from a content package on Optical Disc Drive.\n");
printf("RetroArch was launched from a content package on Optical Disc Drive.\n");
break;
default:
printf("SSNES was launched from a content package on an unknown device type.\n");
printf("RetroArch was launched from a content package on an unknown device type.\n");
break;
}
}
Expand Down
8 changes: 4 additions & 4 deletions 360/menu.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand All @@ -26,7 +26,7 @@

#include "../general.h"

CSSNES app;
CRetroArch app;
filebrowser_t browser;
filebrowser_t tmp_browser;
char strbuffer[1024];
Expand Down
10 changes: 5 additions & 5 deletions 360/menu.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand All @@ -27,7 +27,7 @@ enum
SETTING_HARDWARE_FILTERING
};

class CSSNES : public CXuiModule
class CRetroArch : public CXuiModule
{
public:
HXUIOBJ hMainScene;
Expand Down Expand Up @@ -141,6 +141,6 @@ int menu_init (void);
void menu_deinit (void);
void menu_loop (void);

extern CSSNES app;
extern CRetroArch app;

#endif
6 changes: 3 additions & 3 deletions 360/shared.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_audio.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_input.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_input.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
10 changes: 5 additions & 5 deletions 360/xdk360_video.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down Expand Up @@ -617,8 +617,8 @@ void xdk360_video_set_vsync(bool vsync)
// 360 needs a working graphics stack before SSNESeven starts.
// To deal with this main.c,
// the top level module owns the instance, and is created beforehand.
// When SSNES gets around to init it, it is already allocated.
// When SSNES wants to free it, it is ignored.
// When RetroArch gets around to init it, it is already allocated.
// When RetroArch wants to free it, it is ignored.
void xdk360_video_init(void)
{
video_info_t video_info = {0};
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_video.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_video_general.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions 360/xdk360_video_resources.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ config.mk: configure qb/*
@echo "config.mk is outdated or non-existing. Run ./configure again."
@exit 1

ssnes: $(OBJ)
retroarch: $(OBJ)
$(Q)$(CXX) -o $@ $(OBJ) $(LIBS) $(LDFLAGS) $(LIBRARY_DIRS)
@$(if $(Q), $(shell echo echo LD $@),)

tools/ssnes-joyconfig: $(JOYCONFIG_OBJ)
tools/retroarch-joyconfig: $(JOYCONFIG_OBJ)
ifeq ($(CXX_BUILD), 1)
$(Q)$(CXX) -o $@ $(JOYCONFIG_OBJ) $(SDL_LIBS) $(LDFLAGS) $(LIBRARY_DIRS)
else
Expand Down
6 changes: 3 additions & 3 deletions audio/alsa.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions audio/coreaudio.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Chris Moeller
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
6 changes: 3 additions & 3 deletions audio/dsound.c
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* SSNES - A frontend for libretro.
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
Expand Down
4 changes: 2 additions & 2 deletions audio/ext/ssnes_audio.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/////
// API header for external SSNES audio driver plugins.
// API header for external RetroArch audio driver plugins.
//
//

Expand Down Expand Up @@ -105,7 +105,7 @@ typedef struct ssnes_audio_driver

// The driver might be forced to use a certain output frequency
// (i.e. Jack), and thus to avoid double resampling, the driver
// can request SSNES to resample to a different sample rate.
// can request RetroArch to resample to a different sample rate.
// This function can be set to NULL if the driver does not
// desire to override the sample rate.
unsigned (*sample_rate)(void *data);
Expand Down
6 changes: 3 additions & 3 deletions audio/ext/ssnes_dsp.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/////
// API header for external SSNES DSP plugins.
// API header for external RetroArch DSP plugins.
//
//

Expand Down Expand Up @@ -38,7 +38,7 @@ typedef struct ssnes_dsp_info
// Some small variance is allowed due to syncing behavior.
float input_rate;

// SSNES requests that the DSP plugin resamples the
// RetroArch requests that the DSP plugin resamples the
// input to a certain frequency.
//
// However, the plugin might ignore this
Expand Down Expand Up @@ -117,7 +117,7 @@ typedef struct ssnes_dsp_plugin
void (*events)(void *data);
} ssnes_dsp_plugin_t;

// Called by SSNES at startup to get the callback struct.
// Called by RetroArch at startup to get the callback struct.
// This is NOT dynamically allocated!
SSNES_API_EXPORT const ssnes_dsp_plugin_t* SSNES_API_CALLTYPE
ssnes_dsp_plugin_init(void);
Expand Down
Loading

0 comments on commit 9ab51ad

Please sign in to comment.