|
Post by MeneerJansen on Apr 22, 2021 16:24:07 GMT
One can choose to display the compete border if one uses the Vice version from one of the topics in these Forums (can't find the topic anymore). You have to boot into "Linux mode" (X Windows Mod, XWM) then if I'm not mistaken. I'd like to do that per default. Does anybody know where those settings files for The C64 are? You can start The C64 in XWM mode ( link to topic) and then you can edit the files on The C64 (might brick The C64). I want to use The C64 w/ a 4:3 monitor. Currently that's not possible because 16:9 mode is forced making the image weird and squished. Also some games use the border for keeping score etc. Part of the border is always overscanned, no matter if you force the emulator to Full Height or "Vertical display shift".
|
|
|
Post by spannernick on Apr 22, 2021 22:31:24 GMT
What... you want to boot into XWM from boot up(from starting up the machine)..?, funny thing is, I am put that into PCUAE at the moment, I just added a way of adding Vice and boot it from boot up, boot up a emulator, you be able to select from 7 emulators to boot up from, its called VICE Mode.
|
|
|
Post by vic2020ian on Apr 23, 2021 7:11:03 GMT
You should be able to configure Vice as you want as it will be on the USB stick in the next version.
|
|
|
Post by MeneerJansen on Apr 23, 2021 9:38:15 GMT
What... you want to boot into XWM from boot up(from starting up the machine)..?, funny thing is, I am put that into PCUAE at the moment, I just added a way of adding Vice and boot it from boot up, boot up a emulator, you be able to select from 7 emulators to boot up from, its called VICE Mode. No. I might not have been clear about this. I do not want to boot into XWM and neither into PCUAE. I was wondering where Retro Games Ltd. hid the configuration files for The C64 and the emulator. I want to connect a 4:3 monitor and I want the full border to be shown.
|
|
|
Post by grasshopper on Apr 23, 2021 11:13:56 GMT
I'm afraid I can't help you on the resolution. But, for what it's worth, I did manage to change the emulator's stock palette by amending the following file: /usr/lib/vice/C64/theC64-palette.vpl
So I'd look in the /usr/lib/vice/C64 directory first.
|
|
|
Post by grasshopper on Apr 23, 2021 11:24:31 GMT
It occurs to me that it might be useful if there was an option within PCUAE to enable the entire contents of the nandb partition to be copied to an external USB drive. You could then overmount everything on nandb (from the root down) to the USB drive and effectively run the entire firmware (apart from the kernel) from a USB drive.
This would make it safer and easier to carry out the type of modification requested in this thread, as you could just change the relevant file on the USB drive. As a bonus, it would also save wear and tear on the internal NAND chip.
|
|
|
Post by jj0 on Apr 23, 2021 17:36:55 GMT
AFAIK you can't really change the resolution on the Maxi in a configuration file, the 1280x720 is hardcoded. Or at least it is in the Carousel source v1.0.5 (which is actually for the Mini):
~/redquark-release-1.0.5$ grep -r -e 1280 -e 720 * src/viceport/video.c: // XXX we use 240 instead of 272 since 240 * 3 = 720 src/ui/selector.c:#define WIDTH 1280 src/ui/selector.c:#define HEIGHT 720 src/ui/toolbar.c:#define WIDTH 1280 src/ui/toolbar.c:#define HEIGHT 720 src/ui/c64.c:#define WIDTH 1280 src/ui/c64.c:#define HEIGHT 720 src/ui/c64.c:#define PP_X1 1280 - CRT_HMiS src/ui/c64.c:#define EU_X1 1280 - CRT_HMiP src/ui/c64.c:#define US_X1 1280 - CRT_HMiN src/ui/c64.c: { EU_X0, 720, 0, 0, 0.7 }, src/ui/c64.c: { EU_X1, 720, 384, 0, 0.7 }, src/ui/c64.c: // Set vertical center position of emulated screen. The 720p screen clips top and bottom borders src/ui/suspend_menu.c:#define WIDTH 1280 src/ui/suspend_menu.c:#define HEIGHT 720 src/ui/suspend_menu.c: mainmenu_selector_set_position( 1280 / 2, -(720/2), 320, 200 ); src/ui/system_menu.c:#define WIDTH 1280 src/ui/system_menu.c:#define HEIGHT 720 src/ui/gameshot.c:#define WIDTH 1280 src/ui/gameshot.c:#define HEIGHT 720 src/ui/gameshot.c:#define X (1280/2) - 312 + 21 + 7 src/ui/gameshot.c:#define Y (720/2) + 151 - 21 src/ui/ui.c:# define WIDTH 720 src/ui/ui.c:# define HEIGHT 720 src/ui/ui.c:# define WIDTH 1280 src/ui/locale_menu.c:#define WIDTH 1280 src/ui/locale_menu.c:#define HEIGHT 720 src/ui/decoration.c:#define WIDTH 1280 src/ui/decoration.c:#define HEIGHT 720 src/ui/decoration.c: { 1280, 0, 8, 60}, src/ui/decoration.c: { 1280, 60, 8, 59}, src/ui/decoration.c: { 1280 - SE, 0 + SE - 4, 200, 120}, src/ui/decoration.c: { 1280 - SE, 44 + SE - 4, 200, 76}, src/ui/settings_menu.c:#define WIDTH 1280 src/ui/settings_menu.c:#define HEIGHT 720 src/ui/ip_notice.c:#define WIDTH 1280 src/ui/ip_notice.c:#define HEIGHT 720 src/ui/carousel.c:#define WIDTH 1280 src/ui/carousel.c:#define HEIGHT 720 src/ui/carousel.c: {1280, 75, 4.9, 59.9, 0.2}, src/ui/carousel.c: {1280, 275, 4.9, 59.1, 0.2}, src/ui/carousel.c: {1280, 270, 16, 10, 0.2}, src/ui/carousel.c: {1280, 276, 16, 4, 0.2}, src/ui/carousel.c: {1280, 76, 16.9, 29, 0.2}, src/ui/carousel.c: {1280, 82, 16.9, 23, 0.2}, src/ui/carousel.c: c->offset_y = T_TO_GL(HEIGHT, -720); // Offscreen src/ui/carousel.c: if( c->is_offscreen) mainmenu_selector_set_position( 1280/2, -720, CARD_PIXEL_WIDTH, CARD_PIXEL_HEIGHT); src/ui/display_menu.c:#define WIDTH 1280 src/ui/display_menu.c:#define HEIGHT 720 src/ui/summary.c:#define WIDTH 1280 src/ui/summary.c:#define HEIGHT 720 src/ui/summary.c: g->desc_pane[0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->body, VP_RIGHT - VP_LEFT - 6 * 2, 270, 1280, 720, TEXT_LEFT ); src/ui/summary.c: g->title_pane[0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->heading, 529, 270, 1280, 720, TEXT_LEFT ); src/ui/summary.c: g->label_pane[0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->italic, 90, 270, 1280, 720, TEXT_RIGHT ); src/ui/summary.c: g->credit_pane[0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->body, 459, 270, 1280, 720, TEXT_LEFT ); src/ui/summary.c: g->yearl_pane [0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->italic, 50, 30, 1280, 720, TEXT_RIGHT ); src/ui/summary.c: g->year_pane [0] = textpane_init( g->vertice_groups[0], g->fonts->fontatlas, fonts->body, 50, 30, 1280, 720, TEXT_LEFT ); src/ui/screen_fader.c:#define WIDTH 1280 src/ui/screen_fader.c:#define HEIGHT 720 src/ui/screen_fader.c: { 0, 720, 0.1, 57.9, 0.2}, src/ui/screen_fader.c: { 1280, 0, 0.9, 57.1, 0.2}, src/ui/screen_fader.c: { 1280, 720, 0.9, 57.9, 0.2}, src/ui/screen_fader.c: textpane_t *msg = textpane_init( f->vertice_group, f->fonts->fontatlas, f->fonts->heading, 1280, 720, 1280, 720, TEXT_CENTER ); src/ui/screen_fader.c: build_text( msg, txt, 1, 0, 720/2 - 20 ); src/ui/screen_fader.c: textpane_t *msg = textpane_init( f->vertice_group, f->fonts->fontatlas, f->fonts->heading, 1280, 720, 1280, 720, TEXT_CENTER ); src/ui/screen_fader.c: build_text( msg, txt, 1, 0, 720/2 - 20 ); src/ui/vkeyboard.c:#define WIDTH 1280 src/ui/vkeyboard.c:#define HEIGHT 720 src/ui/vkeyboard.c: int x = 1280 - 100 - 21 + (26 * c) + 11 - LEFT_ADJ; src/ui/vkeyboard.c: menu_set_enabled_position ( vkeyboard->menu, 1280 - 50 - LEFT_ADJ - 21, HH ); src/ui/vkeyboard.c: menu_set_disabled_position( vkeyboard->menu, 1280 + 50 - LEFT_ADJ, HH ); src/ui/vkeyboard.c: mainmenu_selector_set_position( 1280 + 300, 720/2, 21, 21 ); src/ui/ig_menu.c:#define WIDTH 1280 src/ui/ig_menu.c:#define HEIGHT 720 src/ui/test_mode.c:#define WIDTH 1280 src/ui/test_mode.c:#define HEIGHT 720 src/ui/factory_reset_menu.c:#define WIDTH 1280 src/ui/factory_reset_menu.c:#define HEIGHT 720 src/ui/keyboard_menu.c:#define WIDTH 1280 src/ui/keyboard_menu.c:#define HEIGHT 720 src/ui/fs_menu.c:#define WIDTH 1280 src/ui/fs_menu.c:#define HEIGHT 720 src/ui/fs_menu.c: {1280, RULER_SPACE + RULER_THICKNESS, 16, 10}, src/ui/fs_menu.c: {1280, RULER_SPACE, 16, 0}, src/ui/fs_menu.c: {1280, 0 + RULER_SPACE, 16, 10}, src/ui/fs_menu.c: {1280, 0 + RULER_SPACE + RULER_THICKNESS, 16, 0}, src/ui/fs_menu.c: { 1280 - SE - 20, 0 + SE + 17, 558, 119}, src/ui/fs_menu.c: { 1280 - SE - 20, 35 + SE + 17, 558, 84},
|
|
|
Post by MeneerJansen on Apr 24, 2021 10:01:08 GMT
I'm afraid I can't help you on the resolution. But, for what it's worth, I did manage to change the emulator's stock palette by amending the following file: /usr/lib/vice/C64/theC64-palette.vpl
So I'd look in the /usr/lib/vice/C64 directory first.
(no e-mail about this post was sent again) Thanks. Indeed the settings for the keymaps and palette are there. On my Linux computer, Vice's settings for the screen et cetera are in /home/my_name/.vice/vicerc. In that file is an entry called "VICIIFullscreen=0" which probably determines if the full border is displayed or not (e.g. for the game Mega Phoenix). I cant find a file named "vicerc" anywhere on the NAND. I suspect The C64 has its settings in the file /var/lib/the64/profile/0/settings.dat but the file is only 76 Bytes in size (!). There aren't even settings in /etc/ for X (the graphical system) and the resolution of the machine itself. Strange. I'd like the machine to boot in a 4:3 resolution so that I can use it w/ a 4:3 monitor (wouldn't we all?). @ jj0: thanks for that info. So there ain't no config file for the resolution of The C64 on the HDMI output. Hard set to 1280x720. Hmmm. Bummer.
|
|
|
Post by jj0 on Apr 24, 2021 14:08:34 GMT
I'm afraid I can't help you on the resolution. But, for what it's worth, I did manage to change the emulator's stock palette by amending the following file: /usr/lib/vice/C64/theC64-palette.vpl
So I'd look in the /usr/lib/vice/C64 directory first.
(no e-mail about this post was sent again) Thanks. Indeed the settings for the keymaps and palette are there. On my Linux computer, Vice's settings for the screen et cetera are in /home/my_name/.vice/vicerc. In that file is an entry called "VICIIFullscreen=0" which probably determines if the full border is displayed or not (e.g. for the game Mega Phoenix). I cant find a file named "vicerc" anywhere on the NAND. I suspect The C64 has its settings in the file /var/lib/the64/profile/0/settings.dat but the file is only 76 Bytes in size (!). There aren't even settings in /etc/ for X (the graphical system) and the resolution of the machine itself. Strange. I'd like the machine to boot in a 4:3 resolution so that I can use it w/ a 4:3 monitor (wouldn't we all?). @ jj0: thanks for that info. So there ain't no config file for the resolution of The C64 on the HDMI output. Hard set to 1280x720. Hmmm. Bummer. You can change the (framebuffer) resolution by using the fbset command, but the Carousel will probably still try to use 1280x720. I haven't tried it. You can see an example in my 'full blown VICE' post. The THE64 VICE uses the /root/vicerc or /root/.vicerc I don't quite remember which one but if you search on posts by me with the word vicerc you should find the right thread. THE64 doesn't use Xorg at all that's why you don't find any X setting files. AFAIK it uses a layer on top of OpenGL ES called Flashlight.
|
|
|
Post by jj0 on Apr 24, 2021 14:11:04 GMT
Actually it's /root/.vice/vicerc
|
|
|
Post by spannernick on Apr 24, 2021 14:19:23 GMT
A vicerc file will not work with the carousel, all its settings are in its settings.dat file thats encrypted, that where its 50/60hz settings and what computer model C64/VIC20 you want to use and if you want to boot it into Carousel Mode or Classic Mode.
|
|
|
Post by spannernick on Apr 24, 2021 14:24:19 GMT
It occurs to me that it might be useful if there was an option within PCUAE to enable the entire contents of the nandb partition to be copied to an external USB drive. You could then overmount everything on nandb (from the root down) to the USB drive and effectively run the entire firmware (apart from the kernel) from a USB drive. This would make it safer and easier to carry out the type of modification requested in this thread, as you could just change the relevant file on the USB drive. As a bonus, it would also save wear and tear on the internal NAND chip. You would need to hack its kernal to boot from the USB Stick and the USB Stick would have 2 partitions on it, one ext4 and the other one FAT32 then copy nandb to ext4 partition then get the kernel to boot from that partition, or make a img of nandb and mount it as chroot, like XWM. All mini consoles that have been hacked have had there firmware changed or reflashed so your lucky you don't have to do that with PCUAE, everything PCUAE does is on the USB Stick, the only file it copies to the firmware is the Autoboot Start-Up file if you want to Autoboot PCUAE Mode, VICE Mode or Linux Mode.
|
|
|
Post by MeneerJansen on Apr 25, 2021 9:46:22 GMT
A vicerc file will not work with the carousel, all its settings are in its settings.dat file thats encrypted, that where its 50/60hz settings and what computer model C64/VIC20 you want to use and if you want to boot it into Carousel Mode or Classic Mode. Thanks for that info. In summary: the output resolution of 'The C64' is hard set to 1280 x 720 and the file /var/lib/the64/profile/0/settings.dat probably does not contain settings for the emulator that 'The C64' uses.
|
|
|
Post by spannernick on Apr 25, 2021 10:15:01 GMT
Yes it stores setting for Carousel Mode and Classic Mode and properly has the settings for vice too, but you can not open it, it encrypted so can not see inside it, the settings.dat file is properly its vicerc file, the Carousel created it, if you reset the machine it delete it and has to make a new one.
All its settings are in that file, 50/60hz,langauge settings, Boot Mode order, Computer Model, Classic Mode or Carousel Mode.
What you see on the screen is Flashlight the whole thing is made from it, the closes thing I have come across that maybe like it is Adobe Flash, why I say Flash cause the carousel is made up of different layers on the screen like in Flash, Flash has different Layers too but you have a UI so can put image were you want them, with Flashlight you have to tell it where each image goes, you have to do it all in C in Flashlight, a lot harder.
|
|
|
Post by jj0 on Apr 25, 2021 11:52:32 GMT
A vicerc file will not work with the carousel, all its settings are in its settings.dat file thats encrypted, that where its 50/60hz settings and what computer model C64/VIC20 you want to use and if you want to boot it into Carousel Mode or Classic Mode. Thanks for that info. In summary: the output resolution of 'The C64' is hard set to 1280 x 720 and the file /var/lib/the64/profile/0/settings.dat probably does not contain settings for the emulator that 'The C64' uses. But you can still experiment with the /root/.vice/vicerc file because this is read by the emulator though not all settings will be used.
|
|
|
Post by spannernick on Apr 25, 2021 15:43:41 GMT
Thanks for that info. In summary: the output resolution of 'The C64' is hard set to 1280 x 720 and the file /var/lib/the64/profile/0/settings.dat probably does not contain settings for the emulator that 'The C64' uses. But you can still experiment with the /root/.vice/vicerc file because this is read by the emulator though not all settings will be used. Oh.. didn't know that... could you use the vicerc from the windows version of VICE so from PCU Game Manager or does need to be one from the Linux version..?
|
|
|
Post by spannernick on Apr 25, 2021 15:57:05 GMT
A vicerc file will not work with the carousel, all its settings are in its settings.dat file thats encrypted, that where its 50/60hz settings and what computer model C64/VIC20 you want to use and if you want to boot it into Carousel Mode or Classic Mode. Thanks for that info. In summary: the output resolution of 'The C64' is hard set to 1280 x 720 and the file /var/lib/the64/profile/0/settings.dat probably does not contain settings for the emulator that 'The C64' uses. All the changes I am making in PCUAE like adding VICE Mode and enable/disable Splash Screen and that I made for users like you who want to use the machine like its a original machine, VICE Mode is abit like If you were going to run BMC64 on the RIP3, no carousel in site.. , you enable VICE Mode using the PCU Options Menu and you can set 7 VICE Emulators to boot from start up and if you want to boot into another one when you have booed into the default one, you just press CTRL and 1 to 7 on the keyboard to boot into another one on the fly.. so now you do not need to use the Carousel or Classic Mode no more so you can just use VICE from Start up instead..
|
|
|
Post by MeneerJansen on Apr 26, 2021 9:07:21 GMT
Thanks for that info. In summary: the output resolution of 'The C64' is hard set to 1280 x 720 and the file /var/lib/the64/profile/0/settings.dat probably does not contain settings for the emulator that 'The C64' uses. All the changes I am making in PCUAE like adding VICE Mode and enable/disable Splash Screen and that I made for users like you who want to use the machine like its a original machine, VICE Mode is abit like If you were going to run BMC64 on the RIP3, no carousel in site.. , you enable VICE Mode using the PCU Options Menu and you can set 7 VICE Emulators to boot from start up and if you want to boot into another one when you have booed into the default one, you just press CTRL and 1 to 7 on the keyboard to boot into another one on the fly.. so now you do not need to use the Carousel or Classic Mode no more so you can just use VICE from Start up instead.. I take it that I then have to boot my The C64 normally first and then do a "fake firmware upgrade" to start PCUAE?
|
|
|
Post by spannernick on Apr 26, 2021 9:36:27 GMT
All the changes I am making in PCUAE like adding VICE Mode and enable/disable Splash Screen and that I made for users like you who want to use the machine like its a original machine, VICE Mode is abit like If you were going to run BMC64 on the RIP3, no carousel in site.. , you enable VICE Mode using the PCU Options Menu and you can set 7 VICE Emulators to boot from start up and if you want to boot into another one when you have booed into the default one, you just press CTRL and 1 to 7 on the keyboard to boot into another one on the fly.. so now you do not need to use the Carousel or Classic Mode no more so you can just use VICE from Start up instead.. I take it that I then have to boot my The C64 normally first and then do a "fake firmware upgrade" to start PCUAE? Yes... and you can Autoboot it too, once you have started it with the fake update, its in the PCUAE Options Menu but I would advise to play around with it and get to learn how to use PCUAE first. The Changes are coming in PCUAE v1.4.4 its not out yet, but If you want to try PCUAEv1.4.4 I can PM you a link to it, it stable now...? Just waiting cause I want a Help Menu for it in PCUAE Options Menu, so you do not have to look online to find out how to do something in it.
|
|
|
Post by MeneerJansen on Apr 26, 2021 10:33:59 GMT
I take it that I then have to boot my The C64 normally first and then do a "fake firmware upgrade" to start PCUAE? Yes... and you can Autoboot it too, once you have started it with the fake update, its in the PCUAE Options Menu but I would advise to play around with it and get to learn how to use PCUAE first. The Changes are coming in PCUAE v1.4.4 its not out yet, but If you want to try PCUAEv1.4.4 I can PM you a link to it, it stable now...? Just waiting cause I want a Help Menu for it in PCUAE Options Menu, so you do not have to look online to find out how to do something in it. Do you mean that I can autoboot into PCUAE? How do I do that from a cold boot (that is: when I take my The C64 from the shelf)? Do I put a USB stick in The C64 and press and hold the power button or something like that to skip Retro Games Ltd's firmware starting?
|
|
|
Post by vic2020ian on Apr 27, 2021 7:02:55 GMT
Yes... and you can Autoboot it too, once you have started it with the fake update, its in the PCUAE Options Menu but I would advise to play around with it and get to learn how to use PCUAE first. The Changes are coming in PCUAE v1.4.4 its not out yet, but If you want to try PCUAEv1.4.4 I can PM you a link to it, it stable now...? Just waiting cause I want a Help Menu for it in PCUAE Options Menu, so you do not have to look online to find out how to do something in it. Do you mean that I can autoboot into PCUAE? How do I do that from a cold boot (that is: when I take my The C64 from the shelf)? Do I put a USB stick in The C64 and press and hold the power button or something like that to skip Retro Games Ltd's firmware starting? Insert PCUAE stick Power on TheC64 Run fake firmware Press Menu and right fire on joystick Set autoboot PCUAE will now run every time the USB is inserted You can soon also be able to choose any 1 of 7 machines to boot in Vice instead of Carousel. You can also disable the Boot logo to get power on black screen then straight into a Vice emulation so it looks close to old hardware.
|
|
|
Post by MeneerJansen on Apr 28, 2021 12:38:07 GMT
I take it that I then have to boot my The C64 normally first and then do a "fake firmware upgrade" to start PCUAE? Yes... and you can Autoboot it too, once you have started it with the fake update, its in the PCUAE Options Menu but I would advise to play around with it and get to learn how to use PCUAE first. The Changes are coming in PCUAE v1.4.4 its not out yet, but If you want to try PCUAEv1.4.4 I can PM you a link to it, it stable now...? Just waiting cause I want a Help Menu for it in PCUAE Options Menu, so you do not have to look online to find out how to do something in it. I'd like you to send me a link to try your latest PCUAE version. I finally figured out how to install it. See my posts on page 59 of this topic. But if you send me PCUAE could you do it in a regular Zip file and not a Windows thingy (self extracting archive)? I don't use Windows. I want to try using PCUAE that starts in Vice. B.T.W. I DO NOT use the Carousel Mode. Hate it with a passion. I like my C64 to look like the real thing. Sorry... P.S. In PCUAE that I'm testing right now I cannot return to the emulator if I entered the Menu with "Control + F7" and choose "Close PCU options menu". It reboots the machine or something. It's still all very, very confusing to me... PCU is really meant for hard core Carousel lovers I'm afraid.
|
|
|
Post by vic2020ian on Apr 28, 2021 15:54:35 GMT
PCUAE is for both Carousel and Vice users.
The next version will allow you to boot to either.
It is being tested.
One problem with Vice under PCUAE being fixed is that changing cursor colour with CTRL+1 launched the PET etc.
I saw your keyboard mapping comment - it will get ironed out.
|
|
|
Post by spannernick on Apr 29, 2021 9:25:00 GMT
Yes... and you can Autoboot it too, once you have started it with the fake update, its in the PCUAE Options Menu but I would advise to play around with it and get to learn how to use PCUAE first. The Changes are coming in PCUAE v1.4.4 its not out yet, but If you want to try PCUAEv1.4.4 I can PM you a link to it, it stable now...? Just waiting cause I want a Help Menu for it in PCUAE Options Menu, so you do not have to look online to find out how to do something in it. I'd like you to send me a link to try your latest PCUAE version. I finally figured out how to install it. See my posts on page 59 of this topic. But if you send me PCUAE could you do it in a regular Zip file and not a Windows thingy (self extracting archive)? I don't use Windows. I want to try using PCUAE that starts in Vice. B.T.W. I DO NOT use the Carousel Mode. Hate it with a passion. I like my C64 to look like the real thing. Sorry... P.S. In PCUAE that I'm testing right now I cannot return to the emulator if I entered the Menu with "Control + F7" and choose "Close PCU options menu". It reboots the machine or something. It's still all very, very confusing to me... PCU is really meant for hard core Carousel lovers I'm afraid. I PMed you a message to download PCUAE 1.4.4, are you using that version yet...? download the latest version 1.4.4d24. They are not Windows Installers, they are WinRAR SFX installers so they are a achieve with its own installer, you can unzip them with 7zip, you can do the same thing with 7zip.
|
|
|
Post by MeneerJansen on Apr 29, 2021 18:55:26 GMT
I PMed you a message to download PCUAE 1.4.4, are you using that version yet...? download the latest version 1.4.4d24. They are not Windows Installers, they are WinRAR SFX installers so they are a achieve with its own installer, you can unzip them with 7zip, you can do the same thing with 7zip. Thanks. I replied: I'm trying it out.
|
|
|
Post by MeneerJansen on May 6, 2021 9:41:10 GMT
I PMed you a message to download PCUAE 1.4.4, are you using that version yet...? download the latest version 1.4.4d24. They are not Windows Installers, they are WinRAR SFX installers so they are a achieve with its own installer, you can unzip them with 7zip, you can do the same thing with 7zip. Thanks. I replied: I'm trying it out. FYI, I succeeded in outputting the full border but only by using the "full blown Vice" mod and modding it a bit further. See this topic. To make a long story short: in the file vice/run_vice.sh on your USB stick change the resolution from 950x544 to 1024x576 by changing this: amora | snowbird | ares) # Experimentally achieved values for correct aspect ratio for the Maxi # Should work for the THEVIC-20 too. XRES=950 YRES=544
To this: amora | snowbird | ares) # Experimentally achieved values for correct aspect ratio for the Maxi # Should work for the THEVIC-20 too. # XRES=950 XRES=1024 # YRES=544 YRES=576
Then in Vice's menu do: "Video settings -> VICII border mode -> Full".
|
|