Increased samples in anti aliasing filter, fixed two bugs in original gui

This commit is contained in:
fabio.olimpieri 2013-03-24 14:31:03 +00:00
parent 0dafc20545
commit 95b18c7bf4
4 changed files with 13 additions and 10 deletions

View File

@ -564,7 +564,7 @@ inline void show_screen (int tstados) {
if (ordenador.tstados_counter>=ordenador.tstatodos_frame) { if (ordenador.tstados_counter>=ordenador.tstatodos_frame) {
ordenador.tstados_counter-=ordenador.tstatodos_frame; ordenador.tstados_counter-=ordenador.tstatodos_frame;
ordenador.interr = 1; ordenador.interr = 1;
if ((ordenador.turbo_state == 0) || (curr_frames%7 == 0)) ordenador.readkeyboard = 1; if ((ordenador.turbo_state == 0) || ((curr_frames%7 == 0)&&(curr_frames))) ordenador.readkeyboard = 1;
curr_frames++; curr_frames++;
if (ordenador.tape_start_countdwn==1) ordenador.tape_stop=0; //Autoplay if (ordenador.tape_start_countdwn==1) ordenador.tape_stop=0; //Autoplay
if ((ordenador.tape_start_countdwn>0)&&(ordenador.stop_tape_start_countdown ==0)) ordenador.tape_start_countdwn--; if ((ordenador.tape_start_countdwn>0)&&(ordenador.stop_tape_start_countdown ==0)) ordenador.tape_start_countdwn--;

View File

@ -28,7 +28,7 @@
#define KB_BUFFER_LENGHT 10 #define KB_BUFFER_LENGHT 10
#define MAX_PATH_LENGTH 256 #define MAX_PATH_LENGTH 256
#define N_SAMPLES 4 #define N_SAMPLES 8
extern char salir; extern char salir;

View File

@ -32,6 +32,7 @@
#include "characters.h" #include "characters.h"
#include "menus.h" #include "menus.h"
#include "tape.h" #include "tape.h"
#include "tape_browser.h"
#include <SDL/SDL.h> #include <SDL/SDL.h>
@ -314,7 +315,7 @@ void help_menu() {
clean_screen(); clean_screen();
print_string(fbuffer,"FBZX Wii (1.0)",-1,20,15,0,ancho); print_string(fbuffer,"FBZX Wii (10.0)",-1,20,15,0,ancho);
print_string(fbuffer,"Available keys",-1,50,14,0,ancho); print_string(fbuffer,"Available keys",-1,50,14,0,ancho);
print_string(fbuffer,"Shift:Caps Shift Ctrl:Symbol Shift",-1,95,11,0,ancho); print_string(fbuffer,"Shift:Caps Shift Ctrl:Symbol Shift",-1,95,11,0,ancho);
@ -734,9 +735,11 @@ void select_tapfile() {
if((!strncmp(char_id,"ZXTape!",7)) && (char_id[7]==0x1A)&&(char_id[8]==1)) { if((!strncmp(char_id,"ZXTape!",7)) && (char_id[7]==0x1A)&&(char_id[8]==1)) {
ordenador.tape_file_type = TAP_TZX; ordenador.tape_file_type = TAP_TZX;
rewind_tape(ordenador.tap_file,1); rewind_tape(ordenador.tap_file,1);
browser_tzx(ordenador.tap_file);
} else { } else {
ordenador.tape_file_type = TAP_TAP; ordenador.tape_file_type = TAP_TAP;
rewind_tape(ordenador.tap_file,1); rewind_tape(ordenador.tap_file,1);
browser_tap(ordenador.tap_file);
} }
clean_screen(); clean_screen();

View File

@ -57,7 +57,7 @@ inline void tape_read(FILE *fichero, int tstados) {
//Auto ultra fast mode //Auto ultra fast mode
if ((ordenador.turbo_state != 1)&&(ordenador.turbo==1)) if ((ordenador.turbo_state != 1)&&(ordenador.turbo==1))
{ {
if (ordenador.tape_file_type==TAP_TAP) update_frequency(12500000); if (ordenador.tape_file_type==TAP_TAP) update_frequency(12000000);
else update_frequency(10500000); else update_frequency(10500000);
jump_frames=7; jump_frames=7;
ordenador.precision_old=ordenador.precision; ordenador.precision_old=ordenador.precision;
@ -723,7 +723,7 @@ unsigned char file_empty(FILE *fichero) {
void save_file(FILE *fichero) { void save_file(FILE *fichero) {
long position; long position;
unsigned char xor,salir; unsigned char xor,salir_s;
byte dato; byte dato;
int longitud; int longitud;
@ -743,18 +743,18 @@ void save_file(FILE *fichero) {
xor^=procesador.Rm.br.A; xor^=procesador.Rm.br.A;
salir = 0; salir_s = 0;
do { do {
if (procesador.Rm.wr.DE == 0) if (procesador.Rm.wr.DE == 0)
salir = 2; salir_s = 2;
if (!salir) { if (!salir_s) {
dato=Z80free_Rd_fake(procesador.Rm.wr.IX); // read data dato=Z80free_Rd_fake(procesador.Rm.wr.IX); // read data
fprintf(fichero,"%c",dato); fprintf(fichero,"%c",dato);
xor^=dato; xor^=dato;
procesador.Rm.wr.IX++; procesador.Rm.wr.IX++;
procesador.Rm.wr.DE--; procesador.Rm.wr.DE--;
} }
} while (!salir); } while (!salir_s);
fprintf(fichero,"%c",xor); fprintf(fichero,"%c",xor);
procesador.Rm.wr.IX++; procesador.Rm.wr.IX++;
procesador.Rm.wr.IX++; procesador.Rm.wr.IX++;
@ -1268,7 +1268,7 @@ void fastload_block_tzx (FILE * fichero) {
//Anticipate auto ultra fast mode //Anticipate auto ultra fast mode
if ((ordenador.turbo_state!= 1)&&(ordenador.turbo==1)) if ((ordenador.turbo_state!= 1)&&(ordenador.turbo==1))
{ {
update_frequency(11000000); update_frequency(10500000);
jump_frames=7; jump_frames=7;
ordenador.turbo_state=4; ordenador.turbo_state=4;
} }