Jump to content

NukeFall

Members+
  • Posts

    71
  • Joined

  • Last visited

NukeFall's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. #include <stdio.h> void main() { printf ("Why does everyone use cout when printf is so much easier?\n"); printf ("lol\n"); } Oh and GC #include "gc.h" (This has windows.h and a resource file in it) LRESULT CALLACK WndProc(HWND hWindow, UINT msg, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, hPrevInstance, PSTR szCmdLine, int iCmdShow) { static TCHAR szAppName[] = TEXT("Gcs Message"); WNDCLASSEX wndclass; HWND hWindow; MSG msg; wndclass.cbSize = sizeof(wndclass); wndclass.style = CS_HREDRAW | CS_VREDRAW; wndclass.lpfnwWndProc = WndProc; wndclass.cbClsExtra = 0; wndclass.dcWndExtra = 0; wndclass.hInstance = hInstance; wndclass.hIcon = LoadIcon(hInstance, MAKEINTORESOURCE(IDI_GC)); wndclass.hIconSm = LoadIcon(hInstance, MAKEINTORESOURCE(IDI_GCSM)); wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); wndclass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); wndclass.lpszMenuName = NULL; wndclass.lpszClassName = szAppName; if (!RegisterClassEx(&wndclass)) return 0; hWindow = CreateWindow(szAppName, szAppName, WSOVERLAPPEDWINDOW, CW_USERDEFAULT, CW_USERDEFAULT, CW_USERDEFAULT, CW_USERDEFAULT, NULL, NULL, hInstance, NULL); ShowWindow(hWindow, iCmdShow); UpdateWindow(hWindow); while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } return (int)msg.wParam; } LRESULT CALLBACK WndProc(HWND hWindow, UINT msg, WPARAM wParam, LPARAM lParam) { HDC hDC; PAINTSTRUCT ps; RECT rect; switch(msg) { case WM_PAINT: hDC = BeginPaint(hWindow, &ps); GetClientRect(hWindow, &rect); DrawText(hDC, TEXT("Wow GC good to see your still alive and hope the forum is greatly improved... also sorry for this huge post), -1, &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER); EndPaint(hWindow, &ps); return 0; case WM_DESTROY: PostQuitMessage(0); return 0; } return DefWindowProc(hWindow, msg, wParam, lParam); } God i hate windows
  2. Well i hate to say it but... games do desensitize You cannot deny that lately games desensitize BUT the choice to play the game is the kids and the parents should screen the games also there are much much more desensitzing things Also because violent video games seem to be popular itll always be a heated subject (Thats about 70% of the people i knows reason for hating the gamecube cause it doesnt have alot of violent games)
  3. Yea but how long do you wanna bet itll take for the emulator community to make it compatible or even make something like streaming available lol
  4. The thing is that it wouldnt be pratical... first take into account how small a flash cart is then take into account the need to buy a flash cart then also take into account that itll only be able to do such things as typewriting at most cause any games it can play could also be played just by the DS itself it just doesnt seem pratical >> Also i am interested im just not positivly interested >>
  5. Well if theres unrated movies theres got to be unrated games... in my eyes i just think ERSB kinda monopolizes the game industry
  6. Hmm in a way removing GTA cause of the hot coffee mod would be a restriction of free speech wouldnt it? Also is it neccesary to go through ERSB to publish a game?
  7. I do hope the police men who did that get fired and charged it is a really bad incedent... and the downing street memo is so incriminating Sadly i dont think itll ever be tooken seriously itll either be completly ignored or like other issues twisted into something that makes people believe that its a bi partisan issue.. honestly the administration is afraid of the public relizing that this isnt about the parties its about bush just doing a bad job Sorry that was off topic
  8. Acrually i dont think it was because of race i think it was because its GTA... if theres one game that i know most parents will synonomyse with bad its "Grand Theft Auto"... most parents wont know or care what god of war is the only reason that GTA is the target is cause its been targeted before
  9. The thing is that an OS is what EXACTLY seperates a game system from a computer... that is the main difference.. the only pourpose of an OS is to provide a shield between the user and the hardware and thats what makes a game system a game system because you program directly with the hardware not under some specific OS's System Calls and Lybraries >>
  10. Hmm i wonder didnt the original Mortal Kombat also need a cheat that unlocks something (Fatalities) that would have changed the rating otherwise.... the only difference is one is about violence the other is about sex hmmm
  11. Yes a witch hunt TIS A WITCH BURN YE AT YE STAKE >> The more you talk about it the more publicity they get just go with what Klaw said <<
  12. Hmm wasnt it that one south park episode that said "It seems as long as sex is around parents dont care about violence"
  13. IF thats what killer app is then i wish no system had one. No person should by a consol just for one game they should buy it cause it has a bunch of great games.
  14. Putting an OS on a game consol completly eliminates the pourpose of a game console. If you wanna do all those stuff do them on a computer and play games on the DS >> (A pet peeve of mine is having a game machine pourposly do anythig besides well playing games >>)
×
×
  • Create New...