@@ -41,12 +41,11 @@ static unsigned crop_borders_generic_threads(void *data)
4141 return 1 ;
4242}
4343
44- /* Εδώ είναι η αρχικοποίηση όπως την κάνει το Blargg */
4544static void crop_borders_initialize (struct filter_data * filt ,
4645 const struct softfilter_config * config ,
4746 void * userdata )
4847{
49- /* Το RetroArch θα ψάξει στο .filt για : crop_borders_crop_x */
48+ /* RetroArch wull look at .filt for : crop_borders_crop_x */
5049 config -> get_float (userdata , "crop_x" , & filt -> crop_x , 0.0f );
5150 config -> get_float (userdata , "crop_y" , & filt -> crop_y , 0.0f );
5251}
@@ -67,7 +66,6 @@ static void *crop_borders_generic_create(const struct softfilter_config *config,
6766
6867 filt -> in_fmt = in_fmt ;
6968
70- /* Καλούμε την initialize όπως το Blargg */
7169 crop_borders_initialize (filt , config , userdata );
7270
7371 return filt ;
@@ -89,7 +87,7 @@ static void crop_borders_generic_destroy(void *data)
8987 free (filt );
9088}
9189
92- /* Rendering Logic με Float Coordinates */
90+ /* Rendering Logic with Float Coordinates */
9391static void crop_borders_work_cb_xrgb8888 (void * data , void * thread_data )
9492{
9593 struct filter_data * filt = (struct filter_data * )data ;
@@ -192,4 +190,4 @@ const struct softfilter_implementation *softfilter_get_implementation(softfilter
192190#undef softfilter_get_implementation
193191#undef softfilter_thread_data
194192#undef filter_data
195- #endif
193+ #endif
0 commit comments