mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-10 07:39:39 +01:00
7 lines
148 B
Python
7 lines
148 B
Python
import glob
|
|
source_list = glob.glob('*.c')
|
|
|
|
for x in range(len(source_list)):
|
|
source_list[x] = 'palettes/' + source_list[x]
|
|
Return('source_list')
|