Fix LIBRARY_NAME

This commit is contained in:
James Benton 2016-01-04 05:20:12 -08:00
parent 397426de37
commit 44225e4c28
5 changed files with 7 additions and 6 deletions

View File

@ -7,6 +7,9 @@ extern "C" {
void
GX2Init();
void
GX2Shutdown();
#ifdef __cplusplus
}
#endif

View File

@ -1,2 +1 @@
#define LIBRARY_NAME "coreinit.rpl"
#define LIBRARY_SYMBOL coreinit
#define LIBRARY_NAME "coreinit"

View File

@ -1,2 +1 @@
#define LIBRARY_NAME "gx2.rpl"
#define LIBRARY_SYMBOL gx2
#define LIBRARY_NAME "gx2"

View File

@ -1 +1,2 @@
EXPORT(GX2Init);
EXPORT(GX2Init);
EXPORT(GX2Shutdown);

View File

@ -3,7 +3,6 @@
int main(int argc, char **argv)
{
GX2Init();
OSFatal("my first rpx");
return 0;
}