update to AtomicParsley-0.96

This commit is contained in:
sthen 2016-06-11 22:11:53 +00:00
parent d7bb82ebb8
commit 0bb524df7e
2 changed files with 12 additions and 16 deletions

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-AtomicParsley_cpp,v 1.1 2011/05/08 20:48:10 sthen Exp $
--- AtomicParsley.cpp.orig Sun May 8 20:48:55 2011
+++ AtomicParsley.cpp Sun May 8 20:50:01 2011
@@ -96,11 +96,7 @@ struct padding_preferences pad_prefs;
bool contains_unsupported_64_bit_atom = false; //reminder that there are some 64-bit files that aren't yet supported (and where that limit is set)
-#if defined (WIN32) || defined (__CYGWIN__)
-short max_display_width = 45;
+short max_display_width = 62;
-#else
-short max_display_width = 75; //ah, figured out grub - vga=773 makes a whole new world open up
-#endif
char* file_progress_buffer=(char*)calloc(1, sizeof(char)* (max_display_width+50) ); //+50 for any overflow in "%100", or "|"
struct PicPrefs myPicturePrefs;

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_CDtoc_cpp,v 1.1 2016/06/11 22:11:53 sthen Exp $
--- src/CDtoc.cpp.orig Sat Jun 11 23:06:27 2016
+++ src/CDtoc.cpp Sat Jun 11 23:06:38 2016
@@ -71,7 +71,7 @@ CD_TOC_* cdTOC = NULL;
uint8_t LEADOUT_TRACK_NUMBER = MACOSX_LEADOUT_TRACK;
#elif defined (HAVE_LINUX_CDROM_H)
uint8_t LEADOUT_TRACK_NUMBER = CDROM_LEADOUT;
-#elif defined (_WIN32)
+#else
uint8_t LEADOUT_TRACK_NUMBER = 0xAA; //NOTE: for WinXP IOCTL_CDROM_READ_TOC_EX code, its 0xA2
#endif