mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
Changed file paths from /epoc/ to /symbian/
svn-id: r20618
This commit is contained in:
parent
b91e8a572a
commit
692adbe614
@ -45,6 +45,7 @@ ParseModule("_saga", "saga", \@section_empty);
|
||||
ParseModule("_kyra", "kyra", \@section_empty);
|
||||
ParseModule("_sword1", "sword1", \@section_empty);
|
||||
ParseModule("_sword2", "sword2", \@section_empty);
|
||||
ParseModule("_lure", "lure", \@section_empty);
|
||||
|
||||
print "
|
||||
=======================================================================================
|
||||
|
22
backends/symbian/UIQ3/scummvm_loc.rss
Normal file
22
backends/symbian/UIQ3/scummvm_loc.rss
Normal file
@ -0,0 +1,22 @@
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// This file localise the applications icons and caption
|
||||
RESOURCE LOCALISABLE_APP_INFO
|
||||
{
|
||||
caption_and_icon =
|
||||
{
|
||||
CAPTION_AND_ICON_INFO
|
||||
{
|
||||
// The caption text is defined in the rls file
|
||||
caption = "ScummVM";
|
||||
// Icons are used to represent applications in the
|
||||
// application launcher and application title bar.
|
||||
// The number_of_icons value identifies how many icons
|
||||
// that exist in the icon_file.
|
||||
number_of_icons = 3;
|
||||
// Using the application icons.
|
||||
icon_file = "\\Resource\\Apps\\ScummVM.mbm";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
18
backends/symbian/UIQ3/scummvm_reg.rss
Normal file
18
backends/symbian/UIQ3/scummvm_reg.rss
Normal file
@ -0,0 +1,18 @@
|
||||
// All registration files need to #include appinfo.rh.
|
||||
#include <AppInfo.rh>
|
||||
|
||||
// All registration files must define UID2, which is always
|
||||
// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
|
||||
UID2 KUidAppRegistrationResourceFile
|
||||
UID3 0xA0000657 // application UID
|
||||
|
||||
// Registration file need to containo an APP_REGISTRATION_INFO resource that
|
||||
// minimally needs to provide the name of the application binary (using the
|
||||
// app_file statement).
|
||||
RESOURCE APP_REGISTRATION_INFO
|
||||
{
|
||||
app_file = "ScummVM"; // filename of application binary (minus extension)
|
||||
// Specify the location of the localisable icon/caption definition file
|
||||
localisable_resource_file = "\\Resource\\Apps\\ScummVM_loc";
|
||||
}
|
||||
|
Binary file not shown.
@ -22,9 +22,9 @@
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "backends/epoc/src/ScummApp.h"
|
||||
#include "backends/symbian/src/ScummApp.h"
|
||||
#include "backends/symbian/src/ScummVM.hrh"
|
||||
|
||||
#include "backends/epoc/src/ScummVM.hrh"
|
||||
#define _PAGESIZE_ 0x1000
|
||||
|
||||
#if defined (__WINS__) && !defined (__SERIES60_30__)
|
||||
|
@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "common/stdafx.h"
|
||||
#include "backends/epoc/src/SymbianActions.h"
|
||||
#include "backends/symbian/src/SymbianActions.h"
|
||||
|
||||
#include "gui/message.h"
|
||||
#include "scumm/scumm.h"
|
||||
|
@ -22,8 +22,8 @@
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "backends/epoc/src/SymbianOS.h"
|
||||
#include "backends/epoc/src/SymbianActions.h"
|
||||
#include "backends/symbian/src/SymbianOS.h"
|
||||
#include "backends/symbian/src/SymbianActions.h"
|
||||
#include "common/config-manager.h"
|
||||
#include "gui/Actions.h"
|
||||
#include "gui/Key.h"
|
||||
|
@ -134,7 +134,7 @@ const char *gScummVMFeatures = ""
|
||||
#ifdef __SYMBIAN32__
|
||||
// we want a list of compiled in engines visible in the program,
|
||||
// because we also release special builds with only one engine
|
||||
#include "backends/epoc/src/main_features.inl"
|
||||
#include "backends/symbian/src/main_features.inl"
|
||||
#endif
|
||||
;
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "backends/wince/CEActionsPocket.h"
|
||||
#include "backends/wince/CEActionsSmartphone.h"
|
||||
#elif defined(__SYMBIAN32__)
|
||||
#include "backends/epoc/src/SymbianActions.h"
|
||||
#include "backends/symbian/src/SymbianActions.h"
|
||||
#endif
|
||||
|
||||
namespace GUI {
|
||||
|
Loading…
x
Reference in New Issue
Block a user