mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
Move VideoRep var declarations to top of function.
This commit is contained in:
parent
dde5566910
commit
7ac0ce5285
1 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
public I64 VideoRep()
|
public I64 VideoRep()
|
||||||
{ // List available screen resolutions.
|
{ // List available screen resolutions, show current resolution.
|
||||||
|
I64 i, count = 0, div, aspect_w, aspect_h;
|
||||||
|
CVideoInfo *info;
|
||||||
|
|
||||||
"\n";
|
"\n";
|
||||||
if (!IsRaw)
|
if (!IsRaw)
|
||||||
|
@ -8,9 +10,6 @@ public I64 VideoRep()
|
||||||
else
|
else
|
||||||
"Framebuffer pointer: 0x%8X \n", sys_framebuffer_addr;
|
"Framebuffer pointer: 0x%8X \n", sys_framebuffer_addr;
|
||||||
|
|
||||||
I64 i, count = 0, div, aspect_w, aspect_h;
|
|
||||||
CVideoInfo *info;
|
|
||||||
|
|
||||||
"\nAll modes shown are 32-bit color.\n\n";
|
"\nAll modes shown are 32-bit color.\n\n";
|
||||||
|
|
||||||
if (!IsRaw)
|
if (!IsRaw)
|
||||||
|
|
Loading…
Reference in a new issue