VOGONS

Common searches


Search results

Display options

Re: Return to Zork and GUS Sound

Did you read this on download page? Other experimental builds also will not be supported. Do not report any bug to developers because these builds are experimental and NOT officially supported. I recommend you to use clean SVN build first before using my build.

Re: Save States - Proof of concept

Interesting... are you adding this patch to your unofficial version of DOSBox? Yes, you can find save directory in my current release. Several files are genereated in the location and their names explain what they mean. I can make it a single saved file by flushing buffer when saving but loading …

Re: Save States - Proof of concept

This can save state to disk, specifically to directory /save/1 to 10. It simply works only in current DOSBox instance though. Still experimental. In save_state.cpp #include void SaveState::save(size_t slot) { //throw (Error) if (slot >= SLOT_COUNT) return; try { for (CompEntry::iterator i = …

More accurate MUNT (MT32 emulation) patch

I've tested MUNT for hours and finally created a more accurate version for DOSBox. Many things are borrowed from ScummVM project. Some files are borrowed from gulikoza's build source. I removed and modified part of source in ScummVM project so that it can be applied to DOSBox. - more accurate than …

Re: cannot set keyboard delay rate

You can specify it in src/hardware/keyboard.cpp --- ./src/hardware/keyboard.cpp Sat May 28 14:41:26 2005 +++ ./src/hardware/keyboard.cpp Sat May 28 14:37:45 2005 @@ -324,7 +324,7 @@ keyb.command=CMD_NONE; keyb.p60changed=false; keyb.repeat.key=KBD_NONE; - keyb.repeat.pause=500; + keyb.repeat.pause= …

Re: DOSBox Icon

Your icon is not that bad but isn't it too round at the edge? I prefer relatively sharper one. @ykhwong - Here's a Z: icon with a sharper edge. It more closely matches your logo file. I hope it may be useful! http://dl.dropbox.com/u/271144/Dosbox-Z-revised.ico And here's an image. The gray …

Re: Create dosbox_logo.h from icon file?

1. Copy the contents of PPM to notepad or MS word. (Like mentioned above, remove four lines of header in advance) 2. Press Ctrl-H and replace space(" ") to tab(^t). 3. Copy all again to MS Excel. 4. Insert cells after 3 columns so that D, H, L, P will have empty rows. 5. Fill rows of D, H, L, P …

Re: DOSBox Icon

emendelson wrote: Here is a scalable icon similar to (but not entirely identical with) Ykhwong's white-on-black "Z:" internal icon on an earlier page. I hope someone might find it useful. Your icon is not that bad but isn't it too round at the edge? I prefer relatively sharper one.

Re: Create dosbox_logo.h from icon file?

Use this to convert your icon to PPM (32bit array). http://netpbm.sourceforge.net/doc/ppm.html If you get something like this: P3 # temp.ppm 4 4 15 1 7 2 15 1 15 0 0 0 15 0 15 0 3 0 3 1 7 0 0 0 0 0 0 0 1 7 0 0 0 0 3 7 0 3 0 Remove lines from P3 to 15 and add a zero after 3 numbers and add "," in …

Page 10 of 27