User talk:Beardface
You have an interesting Poker game. I'd love to see it extended into something more! ^_^ --Navarr 15:45, 3 June 2008 (PDT)
- Oh, don't get me wrong, I'd love to! But I'm not a C or C++ programmer. If i was, I'd be all over that! lol --Navarr 15:58, 3 June 2008 (PDT)
libosk screenshot
Could you please give us a screenshot when you have some time? It would make it much easier for people to see what it is like. Thanks so much. Felix 06:44, 28 June 2008 (CEST)
Did you get your router working?
I responded on the bugs page, and I'm curious what the problem with it is. I guess you don't have a 3800, since you said you bought your router, but I believe all of their home gateways have an error logs you can check from the management console (http://gateway.2wire.net/mdc). Last SBC 2wire I had was just a modem, so I'm not sure exactly. No errors there? I'm assuming you have the latest firmware version?--Timedroid 23:31, 29 June 2008 (CEST)
libosk demo won't build
Hi, I downloaded v0.4.4 of OnScreenKeyboard. I followed the directions and I get the following error when I build:
> "make"
main.cpp
c:/projects/wii/template-osk/source/main.cpp: In function 'int main(int, char**)':
c:/projects/wii/template-osk/source/main.cpp:22: warning: deprecated conversion from string constant to 'char*'
c:/projects/wii/template-osk/source/main.cpp:30: warning: deprecated conversion from string constant to 'char*'
linking ... template-osk.elf
c:/devkitPro/libogc/lib/wii\libosk.a(OnScreenKeyboard.o): In function `OnScreenKeyboard':
d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:13: undefined reference to `wsp::Image::LoadImage(char const*)'
d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:14: undefined reference to `wsp::Image::LoadImage(char const*)'
d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:15: undefined reference to `wsp::Image::LoadImage(char const*)'
d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:13: undefined reference to `wsp::Image::LoadImage(char const*)'
d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:14: undefined reference to `wsp::Image::LoadImage(char const*)'
c:/devkitPro/libogc/lib/wii\libosk.a(OnScreenKeyboard.o):d:/Dev/WiiChat/Client/osk/OnScreenKeyboard.cpp:15: more undefined references to `wsp::Image::LoadImage(char const*)' follow
collect2: ld returned 1 exit status
make[1]: *** [/c/projects/wii/template-osk/template-osk.elf] Error 1
"make": *** [build] Error 2
> Process Exit Code: 2
> Time Taken: 00:02
I checked wsp::Image in image.h and I only see the following method signatures for LoadImage:
IMG_LOAD_ERROR LoadImage(const char* path, IMG_LOAD_TYPE loadtype = IMG_LOAD_TYPE_PATH);
IMG_LOAD_ERROR LoadImage(const unsigned char* path, IMG_LOAD_TYPE loadtype = IMG_LOAD_TYPE_BUFFER);
Can you please let me know if I'm doing something wrong? It looks like the method being invoked doesn't exist.