mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 16:45:33 -04:00
examples: Fix some main() function prototypes
This commit is contained in:
parent
57fccc3ec7
commit
e557225cce
@ -39,7 +39,7 @@ void Draw3DScene(void)
|
||||
NE_GetPolygonCount(), NE_GetVertexCount());
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
irqEnable(IRQ_HBLANK);
|
||||
irqSet(IRQ_VBLANK, NE_VBLFunc);
|
||||
|
@ -20,7 +20,7 @@ void Draw3DScene(void)
|
||||
NE_ModelDraw(Model);
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
irqEnable(IRQ_HBLANK);
|
||||
irqSet(IRQ_VBLANK, NE_VBLFunc);
|
||||
|
@ -16,7 +16,7 @@ void Draw3DScene(void)
|
||||
NE_2DDrawTexturedQuad(0, 0, 256, 256, 0, Material);
|
||||
}
|
||||
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
irqEnable(IRQ_HBLANK);
|
||||
irqSet(IRQ_VBLANK, NE_VBLFunc);
|
||||
|
Loading…
Reference in New Issue
Block a user